home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / containers / HBox.as < prev    next >
Text File  |  2008-10-29  |  467b  |  24 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class HBox extends Box
  8.    {
  9.       
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.        
  12.       
  13.       public function HBox()
  14.       {
  15.          super();
  16.          mx_internal::layoutObject.direction = BoxDirection.HORIZONTAL;
  17.       }
  18.       
  19.       override public function set direction(param1:String) : void
  20.       {
  21.       }
  22.    }
  23. }
  24.